GitHub for Teams

23 July 2021

To clone a repository:
            
                git clone <github_url> <local_directory>To clone a repository:
            
        
Workflow for teams:

change to the project directory (or use IntelliJ terminal)

            
                git pull (gets latest changes from GitHub)
                git add --all
                git commmit -m "descriptive message so others know what you've done"
                git push orign master (optionally you can use git push -u origin master )
            
        

Source: Montgomery College Java Bootcamp (canvas)