Skip to content

malkan98/MSF_2022_git

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Git Lesson

This lesson covers the basics of using git for version control

New commit 7/25 MSF (MolSSI Software Fellow)

To make a commit of your files:

  1. Make changes to your project that you would like to keep
  2. Add files you want to be in the commit to the staging area using "git add FILENAME"
  3. Create a checkpoint (or commit) using the 'git commit' command: git commit -m "commit message"

Adding features

Features should be developed on branches. To create and switch to a branch, us the command

'git switch -c new_branch_name'

To switch to an existing branch, use

'git switch branch_name'

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages