Git 相關使用命令

2021-09-14 08:48:45 字數 2065 閱讀 1114

git config --global user.name "zyl"

git config --global user.email ***@***.com

git config --list 檢查你的git設定

git clone ******.git

vim demo.txt

git add demo.txt 新增新的檔案

git commit -m 'this is first commit' 提交到本地倉庫,並且設定注釋

git push 將推送這一轉變為主分支

git rm ***.txt 刪除檔案

git commit -m '***x'; 提交到倉庫

git push

git pull 拉取檔案

git log -all 日誌

git branch 檢視所有分支

git log --stat *** 檢視 某個支點的提交資訊

find .git/objects -type f 檢視所有分支

git 全域性設定

git config --global user.name "z1577121881"

git config --global user.email "[email protected]"

建立新版本庫

git clone [email protected]:z1577121881/tantou.git

cd tantou

touch readme.md

git add readme.md

git commit -m "add readme"

git push -u origin master

已存在的資料夾或 git 倉庫

cd existing_folder

git init

git remote add origin [email protected]:z1577121881/tantou.git

git add .

git commit -am "你需要填寫的一些資訊"

git push -u origin master

設定全域性資訊

git config --global user.name "你的名字"

git config --global user.email "你的email"

clone 和push

建立特徵分支

git checkout -b $feature_name
提交**

git commit -am "this is commit "
推送到指定分支

git push origin $feature_name
為了方便,最好新增公鑰到git.

可以通過下面命令生成

ssh-keygen -t rsa -c "***xx@***xx.com"# creates a new ssh key using the provided email

# generating public/private rsa key pair...

檢視public key

cat ~/.ssh/id_rsa.pub

# ssh-rsa aaaab3nzac1yc2eaaaadaqabaaabaqc6entgpngwstc....

新增後,在終端(terminal)中輸入

ssh -t [email protected]
若返回welcome to git@osc, yourname!參考:

Git使用命令

初始化本地git倉庫 git init宣告遠端倉庫路徑 git remote add origin 你的遠端專案位址 檢視倉庫位址 git remote v如果結果是正確的則跳過下面的 git remote rm origin 刪除當前連線 git remote add origin xx.git ...

git使用命令

建立分支 git branch mybranch 切換分支 git checkout mybranch 建立並切換分支 git checkout b mybranch 更新master主線上的東西到該分支上 git rebase master 切換到master分支 git checkout mas...

git 使用命令

在進行專案協作時使用git 進入到專案資料夾下 拉取資料使用 git pull 這樣可以拉取到隊友的更改 提交更改使用 三步驟 git add git commit m 注釋說明 git push git add 交新檔案 new 和被修改 modified 檔案,不包括被刪除 deleted 檔案...