标签:添加 克隆 name 操作 remote 初始化 常用操作 lock ranch
记录了本人在科研中常用到的git操作,方便查询,内容并不全面,更多功能等用到的时候再加
git init
git clone <URL>
git add .
git commit -m "message"
显示当前branch
git branch
显示本地和远程所有branch
git branch -a
创建并切换新分支
git checkout -b branch_name
等价于:
git checkout branch_name
git branch branch_name
删除本地分支
git branch -d branch_name
删除远程分支
git push --delete remote_name branch_name
标签:添加 克隆 name 操作 remote 初始化 常用操作 lock ranch
原文地址:https://www.cnblogs.com/geoli/p/13304862.html