Git簡單使用

2021-09-26 18:13:26 字數 572 閱讀 3534

使用git

安裝git

使用github

the world』s leading software development platform · github

git基本命令

git clone + 位址

檢視狀態 git status

新增** git add

新增所有新檔案

git add .

忽略檔案 ignore

建立乙個名為 .ignore 的檔案,裡面寫上要求被忽略上傳的檔名稱和資料夾名稱,資料夾名稱後需要加 /

提交** git commit -m 「描述」

可能需要初始化郵箱和名稱

git config --global user.email 「***x」

git config --global user.name 「***」

git push 和 git pull

git checkout 和 git reset

簡單使用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...