github常用命令總結

2021-10-24 01:59:33 字數 1810 閱讀 5609

cmd視窗開啟/cd 進入你的工作目錄

git init
git config --global user.name '你自己的github使用者名稱'
git config --global user.email '你自己的github的註冊郵箱'
ssh-keygen -t rsa -c "郵箱"
ssh -t [email protected]
git remote add origin 遠端倉庫位址
git remote rm origin
git pull origin master --allow-unrelated-histories
或者從遠端庫轉殖到本地

git clone 遠端位址
git add '檔名'
或者 . 代表當前目錄檔案都新增

git add .
git commit -m '備註'
git push origin master
建立檔案

touch .gitignore
git pull origin master
git status
git log
git log --pretty=oneline
git reflog
git

diff

git reset --hard head^
git reset --hard head~100
git reset --hard 具體版本號
git checkout --檔名
git branch
git branch 分支名
git checkout 分支名
git checkout -b 分支名
git branch -d 分支名
git push origin --delete 分支名
git merge a分支名
git log --graph
git tag 標籤名
git tag
git checkout 標籤名
git push origin 標籤名
git checkout -b [分支名稱]

[tagit g標籤名稱]

git tag -d 標籤名
git push origin :refs/tags/標籤名

github 常用命令總結大全

github常用命令 最近開始研究github,mark下一些常用命令 git remote add upstream 別人的repository 新建分支用於存放別人的repository clone 程式設計客棧title.git 轉殖到本地 git fetch branch2 更新資訊 git...

GitHub常用命令

1 git簡介 git是用c語言開發的分布版本控制系統。版本控制系統可以保留乙個檔案集合的歷史記錄,並能回滾到另外乙個狀態 歷史記錄狀態 對於任何乙個檔案,在 git 內都只有三種狀態 已提交 committed 已修改 modified 和已暫存 staged 已提交表示該檔案已經被安全地儲存在本...

GitHub常用命令

1 mkdir tmp 在當前目錄下建立乙個新的目錄 tmp 2 cd tmp 切換到tmp目錄下 3 git init tmp目錄作為乙個本地倉庫,初始庫git庫 4 touch test.md 在當前目錄下建立了檔案 test.md 5 git add test.md 將test.md檔案增加到...