ringa_lee2017-04-18 10:40:37
Please check the documentation yourself for this kind of problem. If you don’t understand the principles of git, just use the visualization tool
大家讲道理2017-04-18 10:40:37
Currently you need this: http://rogerdudler.github.io/...
If you encounter conflicts or something, you need this: http://www.liaoxuefeng.com/wi...
PHP中文网2017-04-18 10:40:37
git commit is transferred to the local .git directory, git push is transferred to the remote branch (default master), pull download
1. git commit first
2. pull (change if there is a conflict)
3. push
seems to use egit Plug-in, simple and convenient. . .
大家讲道理2017-04-18 10:40:37
I recommend that newcomers first use visual tools to operate, or use visual tools to compare and type commands.
The principle of git is not that intuitive. It is better for newcomers to have a reference process to understand. If there is a deviation in understanding but there is no problem in execution, bigger problems may arise later.
ringa_lee2017-04-18 10:40:37
Seriously, for problems that can be searched online, please ask Du Niang. If you can’t solve the problem, come to SF again
Liao Xuefeng’s git tutorial
高洛峰2017-04-18 10:40:37
git pull origin master
git add .
git commit -am"YOUR COMMIT INFOMATION"
git push -u origin master
黄舟2017-04-18 10:40:37
Who still uses commands? Nowadays they all use graphical interfaces. You're wasting your time.