从源码导入到github

http://stackoverflow.com/questions/4658606/import-existing-source-code-to-github

 

If you've got local source code you want to add to a new remote new git repository without 'cloning' the remote first, do the following (I often do this - you create your remote empty repository in bitbucket/github, then push up your source)

    1. Create the remote repository, and get the URL such asgit@github.com:/youruser/somename.git orhttps://github.com/youruser/somename.git

      If your local GIT repo is already set up, skips steps 2 and 3


    2. Locally, at the root directory of your source, git init

    3. Locally, add and commit what you want in your initial repo (for everything, git add . git commit -m 'initial commit comment')


    4. to attach your remote repo with the name 'origin' (like cloning would do)
      git remote add origin [URL From Step 1]

    5. Execute git pull origin master to pull the remote branch so that they are in sync.
    6. to push up your master branch (change master to something else for a different branch):
      git push origin master

 

转载于:https://www.cnblogs.com/moher/p/3487348.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值