git使用小記

一.問題列表git

1.git: Your branch and 'origin/master' have diverged - how to throw away local commits?github

git fetch origin
git reset --hard origin/master

2、使用指南eclipse

1. 目前狀態fetch

git status

2. 添加url

git add .

3. 提交code

git commit -m "pom merge"

4. 最後一步ip

git push origin master

5.永久刪除提交的文件rem

git rm README.txt

git add .

git commit -m "xxx"

git push origin master

6.在eclipse中執行team->pull出現the current branch is not configured for pullit

解決方法: 
打開所在倉庫的.git文件夾,修改config文件,加入以下參數:ast

[branch "master"]

        remote = master

        merge = refs/heads/master

[remote "master"]

        url = github上該倉庫的地址

        fetch = +refs/heads/*:refs/remotes/origin/*

7.  .gitignore

當須要忽略某個文件,或者某個文件夾時,能夠使用.gitignore添加須要忽略的文件。

可是添加完以後,若是以前提交過這個文件,則須要刪除。

git rm --cached file_path
git commit -m 'del'
git push
相關文章
相關標籤/搜索