Git

作者: Cloverss | 来源:发表于2017-11-17 14:54 被阅读4次
  • Command line instructions
    Git global setup
git config --global user.name "name"
git config --global user.email "email"
ssh-keygen -t rsa -C "email"
  • Create a new repository
git clone git@gitlab.com:liuyasss/Test.git
//cd Test
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 git@gitlab.com:liuyasss/Test.git
git add .
git commit -m "Initial commit"
git push -u origin master
  • Existing Git repository
cd existing_repo
git remote add origin git@gitlab.com:liuyasss/Test.git
git push -u origin --all
git push -u origin --tags

相关文章

网友评论

      本文标题:Git

      本文链接:https://www.haomeiwen.com/subject/izfqkxtx.html