├── .DS_Store ├── .gitignore ├── content └── first.txt ├── css └── main.css ├── images ├── .DS_Store ├── git.png └── github.png ├── index.html ├── python └── hello.py └── readme.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/git-practice/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /content/first.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/git-practice/HEAD/css/main.css -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/git-practice/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/git-practice/HEAD/images/git.png -------------------------------------------------------------------------------- /images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/git-practice/HEAD/images/github.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/git-practice/HEAD/index.html -------------------------------------------------------------------------------- /python/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/git-practice/HEAD/python/hello.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/git-practice/HEAD/readme.md --------------------------------------------------------------------------------