git 常用操作:
1:首先建立本地版本庫:git init
3:然後可以建立檔案、修改檔案、刪除檔案。
如果是建立、修改檔案的話,使用:git add 「檔名」
如果是刪除檔案的話,使用:git rm 「檔名」
現在就可以使用git status
來檢視 git 的狀態;
最後使用:git commit -m 「本次提交的資訊」
然後使用:git push-u origin master
來提交到master 分支。
以後就直接可以用 git push 來進行提交,預設是提交到當前分支的遠端倉庫。
5:接下來就是對於 git 的真正使用
如果我們要修改內容,一般都會重新建乙個分支,然後在分支上做修改,當我們修改完東西之後,把分支上的東西 進行 add 和 commit 操作,然後合併到 master 分支,最後將這個分支刪除。
(1)檢視分支 :`git branch`
(2)建立乙個分支:`git branch 「我是分支的名字」`
(3)切換分支:`git checkout 「我是分支的名字」`
(4)建立並切換乙個分支:`git checkout -b 「我是分支的名字」`
(5)合併某乙個分支到當前分支:`git merge 「我是分支」`
(6)刪除分支:`git branch -d 「我是分支」`
(7)強行刪除分支:`git branch -d 「我是分支」`
(7)可以檢視分支的合併圖:`git log -- graph`
6:有多個分支的時候
當我們從遠端倉庫轉殖時,實際上 git 自動把本地的 master 分支和遠端的 master 分支對應起來了,並且,遠端倉庫的預設名稱是 origin。
(1)推送自己的分支:`git push origin master`
(2)推送到其他的分支:`git push origin 「分支名」`
(3)建立乙個遠端的分支到本地 :`git checkout -b develop origin/develop
`(假設遠端的分支名腳develop)
(4)刪除遠端倉庫上的某個分支時:`git push origin :「分支名」`
這是連線:
解決思路:
1、解決conflicts後再次執行merge;
2、回退到merge前
git
reset--
merge
7:這是git help
下的描述:
the most commonly used git commands are:
add add file contents to
the index
bisect find by binary search the change that introduced a bug
branch list, create, or
delete branches
checkout checkout a branch or paths to
the working tree
clone clone a repository into
anew
directory
commit record changes to
the repository
diff show changes between commits, commit and working tree, etc
fetch download objects and refs from another repository
grep print lines matching a pattern
init create an
empty git repository or reinitialize an existing one
log show commit logs
merge join two
or more development histories together
mv move or
rename
afile, a
directory, or
a symlink
pull fetch from
and integrate with another repository or
alocal branch
push update remote refs along with associated objects
rebase forward-port local commits to
the updated upstream head
reset reset current head to
the specified state
rm remove files
from
the working tree and
from
the index
show show various types of objects
status show the working tree status
tag create, list, delete
or verify a tag object signed with gpg
關於git的使用
終於用上分布式 管理器 好激動 記錄下命令 從github上down乙個專案到本地 git clone o github 倉庫的位址 git使用中遇到的錯誤,push一直有錯誤 檢視git是從哪個ip上down下來的 git remote v 檢視分支 git branch 新建分之 git bra...
關於Git的使用
1.首先你有沒有在你的新環境安裝git,如果沒有的話你需要安裝,這裡開發環境主要是windows 一波傻瓜式安裝後,右擊桌面能看到git bash here 在git的環境下輸入命令,並三個回車結束。ssh keygen t rsa c xx xx.com cat ssh id rsa.pub 顯示...
關於GIT的使用
git使用詳細步驟 一 gitshell的使用 1 雙擊開啟git shell,win7使用者使用管理員許可權開啟 2 輸入git config global user.name nomand 這裡的d1php是站長註冊的使用者名稱,你得改成你自己的 3 輸入git config global us...