Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 749 Bytes

File metadata and controls

26 lines (17 loc) · 749 Bytes

Toolkit_CFD

This file contains several files that are useful for working with CFD.

*caseGeneration folder has files needed to generate a case in Ansys Fluent *monitor folder has files that can monitor Linux queues and simulation progress *shortcut folder has files that make it easier to access certain programs

In order to make changes to git

git add git add * git commit -m "commit message" git push origin master

When working with branches

git checkout -b feature_x creates a new branch git checkout master switches to the master branch git branch -d feature_x deletes the branch git push origin pushes the branch to the repository

git pull updates repo to the newest commit git merge merges the branches