github上面上传自己的项目文件(ubuntu)

首先我们先看看一下好的博客在windows上面上传的方法,需要下载一个Git工具

github是服务端,要想在自己电脑上使用git我们还需要一个git客户端,

windows用户请下载 http://msysgit.github.com/

mac用户请下载 http://code.google.com/p/tortoisegit/

安装博文的参考地址:https://blog.csdn.net/laozitianxia/article/details/50682100

这个里面讲解了很多,很有帮助。

我是在ubuntu系统下面进行,系统直接就有你git工具,所有我省了很多麻烦。

在建立自己的New Repository 按照上面window系统的方法建立,之后同样也会看到这样的


git status
git init
git add --all
git commit -m "first commit(描述)"
git remote add origin https://github.com/caicai2526/DenseNet_focal_loss.git
git push -u origin master
按照提示的操作进行就可以啦!

猜你喜欢

转载自blog.csdn.net/caicai2526/article/details/79929044