码迷,mamicode.com
首页 > 其他好文 > 详细

Git repository initialize

时间:2020-03-05 17:56:13      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:word   class   cti   email   repo   touch   set   uil   mail   

Command line instructions

Git global setup

git config --global user.name "Your Name"
git config --global user.email ""you@example.com""

Create a new repository

git clone ssh://xxx.git
cd YourProj
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master

Existing folder

cd existing_folder
git init
git remote add origin ssh://xxx.git
git add .
git commit -m "Initial commit"
git push -u origin master

Existing Git repository

cd existing_repo
git remote add origin ssh://xxx.git
git push -u origin --all
git push -u origin --tags

Git repository initialize

标签:word   class   cti   email   repo   touch   set   uil   mail   

原文地址:https://www.cnblogs.com/wenhust/p/12421557.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!