单人开发
新建
git init
git init [project-name]
git clone [url]
|
配置
git config --list
git config -e [--global]
git config [--global] user.name "[name]" git config [--global] user.email "[email address]"
|
操作
git status
git add [dir]
git commit -m [message]
git push [remote] [branch]
git pull [remote] [branch]
git reset [commit]
git checkout .
git archive
|
多人开发
分支
git branch -a
git branch [branch-name]
git checkout -b [branch]
git checkout [branch-name]
git merge [branch]
git branch -d [branch-name]
|
参考gitee
满分是10分的话,这篇文章你给几分,您的支持将鼓励我继续创作!
- 本文作者: 聆听·彼岸
- 本文链接: https://ltba.github.io/20240303155048.html
- 版权声明: 本站未注明转载的文章均为原创,所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议.转载请注明出处!