zoukankan      html  css  js  c++  java
  • git创建远程仓库以及在本地提交到远程仓库的方法

    Git create remote repository and usage in the local environment

    1. create the remote repository

    loggin the server

    $ cd ~/git/git_learn/
    $ mkdir project.git
    $ cd project.git
    $ git init --bare

    thus there are some files and directories in the directory '~/git/git_learn/project.git/', just like the following picture

     and then you need to add the write access to this repository, so that you can git push in the local environment

    $ cd ~/git/git_learn
    $ chmod -R 777 project.git ( significant )

    2. In your local environment, open 'bash' shell, and initialize a local repository(git project)

    $ cd ~/test
    $ mkdir Myproject.git
    $ cd Myproject.git $ git init

    and the next step is to add new file or modify existing file, then commit them

    $ vim main.c
    $ git add main.c / $ git add .
    $ git commit -s ( confirm the user.name and user.email are correct and available ) / $ git commit -m "create the project and add main.c"
    $ git remote add origin george@10.168.101.104:/home/george/git/git_learn/project.git ( here please confirm the remote repository has write access )
    $ git push origin master

    3. How to clone this project to local environment

    $ cd ~/test1
    $ git clone george@10.168.101.104:/home/george/git/git_learn/project.git
    --------------------------------------------- Study needs record, record needs review ---------------------------------------------
  • 相关阅读:
    kafka 以windows服务的方式在windows下安装并自启动
    Zookeeper以Windows服务安装运行
    SpringMVC统一转换null值为空字符串的方法
    Java 常见异常种类
    svnkit https 忽略证书认证
    Java svnkit check update commit
    替换句子中的多个不同的词—— python 实现
    word2vec 构建中文词向量
    Eureka 源码编译安装部署
    面试总结
  • 原文地址:https://www.cnblogs.com/georgemxx/p/11624667.html
Copyright © 2011-2022 走看看