使用git 命令将 本地文件 上传到gitlab上

想上传必须得先下下载

  1. 初次将文件上传到gitlab上时,首先在当前文件夹下clone一份
    ,代码如下:
    git clone [email protected]:apr_zhou/mytest.git
  2. 将要上传的文件夹 放在 clone的文件夹下
  3. git init 一下
  4. git add .
  5. git commit -m “提交”
  6. 然后就按照gitlab在新建仓库时提示的–上传已有仓库的命令
    ;;;
    git remote rename origin old-orign
    git remote add orign [email protected]:apr_zhou/mytest.git
    git push -u orign --all
    然后提交就可以拉,去gitlab上就看到了

最后放图一张
使用git 命令将 本地文件 上传到gitlab上_第1张图片

最后放一下gitlab上的给的提示:::::提示看官方手册啊,,,,啧啧,用tortoisegit搞不上传于下载啊。。。。

Command line instructions 
You can also upload existing files from your computer using the instructions below. 
Git global setup
git config --global user.name "apr_zhou"
git config --global user.email "[email protected]"
 Create a new repository
git clone [email protected]:apr_zhou/mytest.git
cd mytest
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master Push an existing folder
cd existing_folder
git init
git remote add origin [email protected]:apr_zhou/mytest.git
git add .
git commit -m "Initial commit"
git push -u origin master Push an existing Git repository
cd existing_repo
git remote rename origin old-origin
git remote add origin [email protected]:apr_zhou/mytest.git
git push -u origin --all
git push -u origin --tags

你可能感兴趣的:(Git)