Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# First, ignore everything
*
# Now, whitelist anything that's a directory
!*/
!src/*
# whitelist only the files that ever need to be tracked
!*.f90
!README.md
!example/*.in
!.gitignore
# Cmake scripts
!*.cmake
!CmakeLists.txt
!src/CMakeLists.txt
#Ignore temporary files created by editors
*.swp
# Ignore anything that's made at compile time
build
bin
lib
*.mod
*.o