學習筆記 git常用命令

2022-03-23 09:00:22 字數 926 閱讀 2050

1、安裝

apt-get install git-core
2、新增公鑰

使用如下命令生成金鑰檔案

ssh-keygen -c '

[email protected]

' -t rsa

會在使用者目錄 ~/.ssh/ 下建立相應的金鑰檔案

可以使用 ssh -v [email protected] 命令來測試鏈結是否暢通。

3、全域性變數設定

git config --global user.name = "

jonhylee

"git config --global user.email = "

[email protected]

"

4、提交**

git init 

git add

git commit -m ''

「git remote add origin [email protected]:jonhylee/mylibraries.git

git push -u origin master

push時候可能會出錯,要先pull

但是pull的時候又出現問題

這時候需要執行

git config branch.master.remote origin  

git config branch.master.merge refs/heads/master

再push,完美執行。

未完待續。。。

git常用命令學習筆記

1 初始化乙個git倉庫 git init2 新增檔案到git倉庫,可以反覆多次使用,新增多個檔案 git add3 完成,新增注釋 git commit4 要隨時掌握工作區的狀態,git status5 如果git status告訴你檔案被修改過,檢視修改的內容使用 git diff6 head指...

Git 常用命令學習筆記

case 1 cd alg ocr utils 在master git add 在master git commit m images enhancement 在master alg ocr utils git new text detect rule git checkout b new text...

Git常用命令(學習筆記)

當你改亂了工作區某個檔案的內容,想直接丟棄工作區的修改時,用命令git checkout file。當你不但改亂了工作區某個檔案的內容,還新增到了暫存區時,想丟棄修改,分兩步,第一步用命令git reset head,就回到了上面,第二步按上面的步驟。已經提交了不合適的修改到版本庫時,想要撤銷本次提...