git簡單使用

2021-07-08 14:33:33 字數 1201 閱讀 7463

set up in desktop

or

we recommend every repository include a readme, license, and .gitignore.

echo # git_init >> readme.md

git init

git add readme.md

git commit -m "first commit"

git remote add origin

git push -u origin master

git remote add origin 

git push -u origin master

you can initialize this repository with code from a subversion, mercurial, or tfs project.

2.     檢視**修改的內容

git diff 

比較某檔案與最近提交節點的差異。

注意:如果該檔案已暫存,那麼應該使用git diff –cached

git diff

比較某檔案在提交節點a,節點b的差異。

技巧:如果省略後面乙個hashcode,則預設表示與上一提交節點比較。(也可以利用^運算子)

3.     暫存需要提交的檔案

如果是新建的檔案

則git add 

如果是修改的檔案

則git add 

如果是刪除的檔案

則 git rm 

4.     提交已暫存的檔案

git commit

注意注釋填寫規範。

git commit --amend

修改最近一次提交。有時候如果提交注釋書寫有誤或者漏提檔案,可以使用此命令。

5.     同步到伺服器

同步到伺服器前先需要將伺服器**同步到本地

命令: git pull

如果執行失敗,就按照提示還原有衝突的檔案,然後再次嘗試同步。

命令:git checkout -- 《有衝突的檔案路徑》

同步到伺服器

命令: git push origin  《本地分支名》

如果執行失敗,一般是沒有將伺服器**同步到本地導致的,先執行上面的git pull命令。

先放著  慢慢修改

簡單使用Git

1.登陸伺服器 git 伺服器位址 git xx.yy.zz.com.cn ssh p steven git xx.yy.zz.com.cn 密碼認證後 伺服器控制台下 cd mnt disk1 moblin kernel linux 2.6.29.y.git git branch 列出branch...

簡單使用git

1.使用郵箱到github上註冊乙個賬號 2.然後建立乙個倉庫 4.先用控制台的配置一下使用者 git config global user.name 你的使用者名字 git config global user.email 你的郵箱 5.建立ssh key 滑鼠右鍵 git gui,幫助選單 sh...

git簡單使用

從事計算機軟體開發有一段時間了,發現 管理一直是個頭痛的問題,最近花了部分時間來熟悉git這個工具,將使用經歷簡單做了哈總結.其中參閱了很多前輩的意見.1 git初始化配置 git配置主要用於標識庫username和email位址 git config global user.name you na...