Skip to content

aman34503/helpinghand

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

To Merge Separate Work to a Single Repo

If each team member has worked separately and you need to combine your work to complete the project, follow these steps for seamless check-in.

One-at-a-time, each team member should do the following :

  1. Clone the repo from GitHub (as described previously)
$ git clone paste-copied-url-here
  1. Create and check out a new branch (branch can be your name)
$ git checkout -b your_branch_name
  1. Copy the files you want to upload into the relevant folders (README into the main folder, notebooks into code, images into images, etc)
  2. Add the files to git. To be safe, add each individually instead of ‘add -a’ to ensure you are only adding the files you want to be included in the final check-in.
$ git add your_file_name
  1. Commit the set of files to git
$ git commit
  1. Push your branch to Github (push your branch name — NOT master)
$ git push -u origin your_branch_name
  1. Go to GitHub, find your branch, issue a Pull Request

  2. Reviewers review and approve the request

  3. Merge the code with the main branch

  4. Repeat for the next person

Contributing

  1. Fork it (https://github.com/yourname/yourproject/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •