Skip to content

anmolchaure/ZVX118Z_fortran_homework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fortran Homework

Report of Observations

Git push using bash

  1. Create a new repository
  2. Navigate to Your Local Project
  • Open terminal
  • navigate to the desired directory that you want to upload
  1. Initialize Git in Your Local Project
  • git init
  • git status (check if some files are already added and if git was initialised properly)
  1. Add file to local branch
  • git add . (add all files) (if need to upload specific file replace . -> filename)
  • again check git status to see if all files are ready to be commited
  1. Commit changes
  • git commit -m "Initial commit" (can write any remark of description here) (for instance, fixing bug etc) (helps to keep track of commits and why they were made)
  1. link local repo to github
  1. Push local project to github
  • git push -u origin main
    • sets the default upstream repository.
    • origin is the default name of your remote repository.
    • main is the name of the default branch in Git (in newer versions, this could be master).
  1. username : password : personal access token(classic) (check on repo box)

About

Tasks for fortran ZVX118Z

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors