1、问题:在配置完成github上的ssh后如何使用ssh?
答:
1)http方式
url =https://github.com/username/test_repo.git
2)ssh方式:把url处改成ssh地址:
url =git@github.com:username/test_repo.git
url是 https的时候会采用用户名认证. 是ssh地址的时候才会采用ssh认证
2、问题:修改repository的url,即修改原来的clone使用的地址
答:git remote set-url origin git://newurl
3、问题:忽略某些文件
答:在根目录下创建.gitignore 文件
# 此为注释 – 将被 Git 忽略
*.a # 忽略所有 .a 结尾的文件
!lib.a # 但 lib.a 除外
/TODO # 仅仅忽略项目根目录下的 TODO 文件,不包括 subdir/TODO
build/ # 忽略 build/ 目录下的所有文件
doc/*.txt # 会忽略 doc/notes.txt 但不包括 doc/server/arch.txt