1. 程式人生 > >git的基本命令

git的基本命令

ted nbsp 刪除遠程分支 一次 sdn 註釋 remote out readme

初始化項目:

git init
git add README.md
git commit -m “first commit”
git remote add origin https://github.com/......
git push -u origin master

若沒有錯誤,則你的第一次提交就完成了,但是我在執行這步的時候,有錯誤:

error: The requested URL returned error: 403 while accessing 
https://github.com/zxy987872674/LearnCode.git/info/refs

修改git的配置文件:

技術分享圖片

被註釋掉的是原來的url,修改url即可,再次執行git push -u origin master,即可執行成功。

二. 創建和刪除分支:

在本地新建一個分支: git branch newBranch
切換到你的新分支: git checkout newBranch
將新分支發布在github上: git push origin newBranch


在本地刪除一個分支: git branch -d newBranch
在github遠程端刪除一個分支: git push origin :newBranch (分支名前的冒號代表刪除)
/git push origin –delete newBranch
註意刪除遠程分支後,如果有對應的本地分支,本地分支並不會同步刪除!


---------------------
作者:猜不透987872674
來源:CSDN
原文:https://blog.csdn.net/zxy987872674/article/details/72491066
版權聲明:本文為博主原創文章,轉載請附上博文鏈接!

git的基本命令