create.sh 162 B

12345678910111213
  1. #!/bin/bash
  2. source ../_generic_create.sh
  3. function _ex() {
  4. touch main.cpp
  5. touch main.cpp~
  6. git add .
  7. git commit -m "first commit"
  8. }
  9. _create _ex