Skip to content

vlc1/Tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

VCS (Version Control System)

  1. SVN
  2. Mercurial
  3. Git
  4. Darcs

Commandes utiles

Étape 1

git init
git status -s
git add README.md
git status -s
git commit -m "Initial commit"
git log

Étape 2

vi test.f90
gfortran test.f90
./a.out
vi .gitignore
git add test.f90 .gitignore
git commit -m "Hello World fortran example"
vi README.md
git add README.md
git commit --amend

Étape 3

git checkout -b mohamed
git branch -a
git diff

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published