git基础操作

Posted sunjinggege

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git基础操作相关的知识,希望对你有一定的参考价值。

命令行指令

Git 全局设置
git config --global user.name "孙靖"
git config --global user.email "[email protected]"
创建新版本库
git clone http://deehow.vicp.cc:8611/sunj/test.git
cd test
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
已存在的文件夹
cd existing_folder
git init
git remote add origin http://deehow.vicp.cc:8611/sunj/test.git
git add .
git commit -m "Initial commit"
git push -u origin master
已存在的 Git 版本库
cd existing_repo
git remote add origin http://deehow.vicp.cc:8611/sunj/test.git
git push -u origin --all
git push -u origin --tags

以上是关于git基础操作的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段15——git命令操作一个完整流程

centos 7部署并汉化Gitlab及基础操作

如何管理在每个 git 版本中添加私有代码片段?

使用 Git 来管理 Xcode 中的代码片段

markdown Git代码片段

Gitlab部署及汉化操作