Skip to content

Andrii0/csc336_project1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

csc336_project1

project 1 for csc336 Fall 2018

create a branch from this repo and make changes in that until ready to merge with master.

Git commands

git checkout <user branch>

To Push Changes

  1. Push the changes to own branch
  • git status to check status
  • git add <file> to add all modified files
  • git commit -m <message> to commit added files
  • git push to push added/commited files
  1. Merge and push from master branch to master remote
  • git checkout master
  • git merge <user branch>
  • git push
  1. Go back to own branch
  • git checkout <user branch>

To Fetch Changes

  1. Make sure local branch is updated
  • git add <files>
  • git commit -a -m <message>
  • git push
  1. Pull from Master branch
  • git checkout master
  • git pull
  1. Merge with Master from own branch and push
  • git checkout <user branch>
  • git merge master
  • git push

About

project 1 for csc336 Fall 2018

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%