├── 0x03-git ├── .gitignore ├── README.md ├── bash │ ├── 98 │ ├── .alx.swp │ ├── alx │ └── school ├── c │ └── c_is_fun.c └── up_to_date ├── README.md └── up_to_date /0x03-git/.gitignore: -------------------------------------------------------------------------------- 1 | ~ 2 | -------------------------------------------------------------------------------- /0x03-git/README.md: -------------------------------------------------------------------------------- 1 | software engineer 2 | -------------------------------------------------------------------------------- /0x03-git/bash/.alx.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/alx-zero_day/HEAD/0x03-git/bash/.alx.swp -------------------------------------------------------------------------------- /0x03-git/bash/98: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x03-git/bash/alx: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ALX School 3 | -------------------------------------------------------------------------------- /0x03-git/bash/school: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | The school is open! 3 | -------------------------------------------------------------------------------- /0x03-git/c/c_is_fun.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x03-git/up_to_date: -------------------------------------------------------------------------------- 1 | git pull origin 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/alx-zero_day/HEAD/README.md -------------------------------------------------------------------------------- /up_to_date: -------------------------------------------------------------------------------- 1 | git pull origin 2 | --------------------------------------------------------------------------------