Skip to content

Latest commit

 

History

History
57 lines (42 loc) · 965 Bytes

2017-02-06#新建git项目及初始化.md

File metadata and controls

57 lines (42 loc) · 965 Bytes

Command line instructions

Git global setup

git config --global user.name "vk"
git config --global user.email "[email protected]"

Create a new repository

git clone [email protected]:vk/HiveUDF.git
cd HiveUDF
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

Existing folder or Git repository

cd existing_folder
git init
git remote add origin [email protected]:vk/HiveUDF.git
git add .
git commit
git push -u origin master

pelican-blog

git init
git remote add origin [email protected]:vickyi/vickyi.github.io.git
git add .
git commit

git config --global user.name "dolphinzhang"

git config --global user.email [email protected]

git push -u origin master


 mkdir articles extra images pages
pip install ghp-import2