rowana
rowana

Reputation: 748

upload files to a branch in github

I know there are hundreds of tutorials out there on this, but I couldn't figure where to start. I am using a MAC and am on a remote system which runs Ubuntu 14.04. What I want to do is upload folders to my organization's github repository. There already exists a repo, and I want to create a branch and upload my files and folders in that branch.

I tried doing

git branch branch_name
git checkout branch_name

However the branch does not show up on the webpage. I also tried creating a branch from the webpage, but I dont know how to upload files to it. I am also not sure how to actually navigate to the repository to which I want to upload.

Please give me instructions as to how I could go about doing this.

Thank you!

Upvotes: 8

Views: 52141

Answers (4)

AAM111
AAM111

Reputation: 1239

  1. Find your repository. (Pick the folder you think it's in, and run ls -a. If you see .git, you're probably in the right place.
    • If you do not have the repository initilized yet, do one of the following:
      • If you have all the files copied from the repository, all you need to do is git init.
      • If you have nothing, run git clone <https://something/foo/bar.git> <folder you want the repository to be in>. If you specify nothing for the folder, it will create it in the current folder.
  2. Create a branch: You can use a single command instead of the two commands you have in your question: git checkout -b <your branch name>
  3. Make some changes in the files.
  4. Track your changes: git add <changed file> [<another changed file> [...]] Note that a changed file can be a folder.
    • If you deleted a file, use git rm <file> so Git knows you deleted it.
  5. Commit your changes: git commit -m "what you did"
  6. If you need to push your changes back to the main branch, use git checkout master and git merge <your branch name>. This will move all commits on your new branch to the original branch.
  7. Push your changes to the online repository: git push
    • For your first time pushing any branch, use this instead: git push --set-upstream <https://something/foo/bar.git> <your branch name>
    • From now on, you can incorporate changes from the online branch to your local by using git pull.
    • If changes are made on master that should be in your branch, checkout your branch and use git rebase master.

Upvotes: 27

ijal
ijal

Reputation: 11

  1. creating a branch from the webpage
  2. git branch branch_name git checkout branch_name
  3. git push origin branch_name

Upvotes: 1

Peter Badida
Peter Badida

Reputation: 12199

  1. Create a branch with git checkout -b <branch>
  2. Do stuff & commit
  3. git push --set-upstream <remote> <my_branch> e.g. origin <branch>

All of that if you have a remote set. If not, set a remote first.

Upvotes: 2

user5520186
user5520186

Reputation:

You need to push your branch to your remote repository. Notice that the -u option sets the upstream for your local branch, so that every following push refers to the given remote branch.

git push -u origin branch_name

If you don't have any configured remote repositories yet, you can do so by copying the URL of your repository and add it as a remote repository.

git remote add origin [email protected]:/YOU/REPO.git

Upvotes: 3

Related Questions