git 使用
下载
https://gitforwindows.org/
配置用户信息
git config --global user.name “caoxiaoyang”
git config --global user.email“1076675153@qq.com”
git config --global user.email "1076675153@qq.com"
git config --global user.name=“CAOXIAOYANG”
git config --global user.email=“1076675153@qq.com”
git init
git add
git commit
git status
创建SSH Key
ssh-keygen -t rsa -C “1076675153@qq.com”
生成
ssh -T git@github.com
git clone https://github.com/cxyroot/ThreadDemo.git
…or create a new repository on the command line
echo "# gitDemo" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/cxyroot/gitDemo.git
git push -u origin master
…or push an existing repository from the command line
git remote add origin https://github.com/cxyroot/gitDemo.git
git push -u origin master
…or import code from another repository
You can initialize this repository with code from a Subversion, Mercurial, or TFS project.
git commit -m "注释部分"
git push
第一步:先是打开Eclipse(JAVA EE)。
第二步:点击菜单栏里的“file”,然后再点击“import”
第三步:然后再在“import”弹出框中选择“Git”,然后再选择“Projects from Git”。
第四步:再点击“Next”按钮。
第五步:再选择“Clone URI”,点击“Next”。
第六步:再在弹出的“Import Projects from Git”弹出框中输入“URI”、“Host”、“Repository path”、“User”、“Password”输入框的值,再点击“Next”按钮。
第七步:再选择分支“develop”,在这里“develop”是外网服务器的代码,过后再点击“Next”按钮。
第八步:然后再选择项目存储的路径,而后点击“Next”按钮。
第九步:然后再直接点击“Next”按钮项目就会在Eclipse(JAVA EE)中加载。
END