1.Eclipse 上更换编码和换行符
Preference-->General-->Workspace-->右边 改成utf-8和Unix
项目右键Resource 直接改utf-8和Unix
2.IDEA上更换编码和换行符
Setting--->Editor-->Code Style--> 第二项换行符 Unix
File Encodings-->utf-8
3.做基本配置
1.配置提交作者:
git config --global user.name "username"
配置姓名
git config --global user.email "email"
配置email地址
2.禁用换行符自动转换:
git config --global core.autocrlf false
4.从零开发,先创建远程库,然后克隆远程库:
git clone url [本地库名]
url
:克隆地址
[本地库名]
:没有[],直接命名
4.1检查本地仓库文件状态:
git status
4.2 gitignore文件创建与编辑
创建
touch .gitignore
文件编辑
.gitignore
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/bin/
.classpath
.project
*.bak
*~
/.settings/
4.3暂存文件,建立跟踪:
git add 具体文件
git add .
//所有添加跟踪
4.4提交一个版本到本地仓库:
git commit -m "commit info"
commit info
:注释信息
4.5将本地仓库的提交推送到远程仓库:
git push origin master
origin
:远程仓库
master
:远程分支
4.6解决版本冲突,拉取远程库的版本,合并到本地库
git pull origin master
origin
:远程仓库
master
:远程分支
5.对于本地已有的代码,初始化库:
git init
5.1在github上创建远程库(略)
5.2添加远程库:
git remote add origin 远程库的url
git pull origin master
拷贝gitignore文件
git status
:查看状态
git add 文件
:建立追踪
git commit -m "注释信息"
git push -u origin master
-u
: 关联远程库
6.邀请成员
在设置里,很简单,进去就会,实在不会开翻译