将本地已有的项目推送至Github上
1. git init
2. git commit -m “first commit”
3. git remote add origin git@github.com:your_own_git_proj
4. git push -u origin master (失败提示pull,就加上 -f 参数)
常见问题
1.保证ssh_key已经添加
2.push失败提示pull,就加上-f
参数重试
将本地已有的项目推送至Github上
1. git init
2. git commit -m “first commit”
3. git remote add origin git@github.com:your_own_git_proj
4. git push -u origin master (失败提示pull,就加上 -f 参数)
1.保证ssh_key已经添加
2.push失败提示pull,就加上-f
参数重试