├── 0x01-git ├── .gitignore ├── README.md ├── bash │ ├── 98 │ ├── alx │ └── school ├── c │ └── c_is_fun.c └── up_to_date └── README.md /0x01-git/.gitignore: -------------------------------------------------------------------------------- 1 | ~ -------------------------------------------------------------------------------- /0x01-git/README.md: -------------------------------------------------------------------------------- 1 | my read me thus is 2 | -------------------------------------------------------------------------------- /0x01-git/bash/98: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x01-git/bash/alx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Makitey/alx-pre_course/HEAD/0x01-git/bash/alx -------------------------------------------------------------------------------- /0x01-git/bash/school: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "The school is open!" 3 | -------------------------------------------------------------------------------- /0x01-git/c/c_is_fun.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x01-git/up_to_date: -------------------------------------------------------------------------------- 1 | git pull 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | My first readme 2 | --------------------------------------------------------------------------------