1. 程式人生 > >git常用小操作。-- 自用

git常用小操作。-- 自用

file for gitignore origin osi pos AS bsp config

編輯 .gitignore

bin-debug/ 忽略所有的叫bin-debug文件夾和他下面的文件

編輯 .git/config

[core]

repositoryformatversion = 0

filemode = false // 提交時,忽略文件rwx權限的變化。

bare = false

logallrefupdates = true

ignorecase = true

precomposeunicode = true

[remote "origin"]

url = http://192.168.0.167/macheng/tianxiaohua111.git

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

[branch "master"]

remote = origin

merge = refs/heads/master

git常用小操作。-- 自用