EasyDemo*Git Bash 命令行上传文件到Github步骤(个人总结)

1>mkdir Servlet
2>git init Servlet
3>cd Servlet
4>讲文件添加到Servlet仓库中
5>git add .(添加全部文件)
    git add HelloServlet(添加个别文件)
6>git commit -m "servlet"

7>Githug网站创建新仓库
8>git remote add -u origin https://github.com/Way123Ne/Servlet.git
9>git push -u origin master
10>git clone https://github.com/Way123Ne/ServletAndJsp.git

猜你喜欢

转载自blog.csdn.net/qq_36287601/article/details/81435824