Skip to content

NYU-CS6313-Projects/d3-labs-example-repo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Example Git Repo

This is an example git repo.

Master Branch

The master branch is the default branch.

Branches are useful tools when making modifications, as any commits you make as a team don't interfere with each other. Once you're done with your feature, you can merge it back into master.

You can also use branches for hosting on Github Pages

Branching

This repo features an additional branch called examplebranch.

To make a branch type git branch BRANCHNAME. That will make a branch called BRANCHNAME

Then changes you make will be isolated to that branch.

Once you're done, you can merge your changes back into the master branch by typing git checkout master and git merge BRANCHNAME

Changes made to files both in the master, and in a branch are usually automatically merged, but you can see here for instructions on how to reserve merge conflicts when they do arise. It's very simple!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published