Git for Windows. 国内直接从官网下载比较困难,需要翻墙。这里提供一个国内的下载站,方便网友下载。
Git 全局设置:
git config --global user.name "小柒2012"
git config --global user.email "345849402@qq.com"
//禁用自动转换 windows下可能会出现问题
git config --global core.autocrlf false
//查看信息
git config --list
创建 git 仓库:
mkdir springboot_dubbo_consumer
cd springboot_dubbo_consumer
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://git.oschina.net/52itstyle/springboot_dubbo_consumer.git
git push -u origin master
已有项目?
cd existing_git_repo
git remote add origin https://git.oschina.net/52itstyle/springboot_dubbo_consumer.git
git push -u origin master
显然,这只是个开始,接触新事物总没有坏处!!!
------------华丽的分割线(自言自语)------------
右键选项Git Bash Here
git init
git add .
git commit -m "初交"
git remote add origin https://git.oschina.net/52itstyle/spring-boot-mongodb.git
#两个不同的项目 先更新
git pull origin master --allow-unrelated-histories
#也可以试用这个
git pull --rebase origin master
git push -u origin master
#最后你也可以
rm -rf .git
https 方式每次都要输入密码,按照如下设置即可输入一次就不用再手输入密码的困扰而且又享受 https 带来的极速
按照以下设置记住密码十五分钟:
git config --global credential.helper cache
如果你想自定义记住的时间,可以这样:
git config credential.helper 'cache --timeout=3600' //这里记住的是一个小时,如需其他时间,请修改3600为你想修改的时间,单位是秒
你也可以设置长期记住密码:
git config --global credential.helper store