├── .gitignore ├── db.accdb ├── first_renamed.txt ├── garbage ├── error - Copy (2).log ├── error - Copy (3).log ├── error - Copy (4).log ├── error - Copy (5).log ├── error - Copy (6).log ├── error - Copy (7).log ├── error - Copy.log └── error.log ├── index.html ├── static ├── dir │ └── this is a text doc.txt └── tex.txt └── this.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DemoRepository/43df33028d0cf55ed91fe0bf2a4d1570ac1eb366/.gitignore -------------------------------------------------------------------------------- /db.accdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/DemoRepository/43df33028d0cf55ed91fe0bf2a4d1570ac1eb366/db.accdb -------------------------------------------------------------------------------- /first_renamed.txt: -------------------------------------------------------------------------------- 1 | this is version 1 of my project 2 | I want this to go into commit 2 master 3 | changed by harry 4 | this is changed nowsdfsdf 5 | this is from master 6 | this is added at bugfix branch -------------------------------------------------------------------------------- /garbage/error - Copy (2).log: -------------------------------------------------------------------------------- 1 | sdff 2 | sdf 3 | sdf 4 | sdf 5 | sdf 6 | sdf 7 | sd 8 | fsd 9 | f 10 | sdfsd 11 | g 12 | this is changed error.log -------------------------------------------------------------------------------- /garbage/error - Copy (3).log: -------------------------------------------------------------------------------- 1 | sdff 2 | sdf 3 | sdf 4 | sdf 5 | sdf 6 | sdf 7 | sd 8 | fsd 9 | f 10 | sdfsd 11 | g 12 | this is changed error.log -------------------------------------------------------------------------------- /garbage/error - Copy (4).log: -------------------------------------------------------------------------------- 1 | sdff 2 | sdf 3 | sdf 4 | sdf 5 | sdf 6 | sdf 7 | sd 8 | fsd 9 | f 10 | sdfsd 11 | g 12 | this is changed error.log -------------------------------------------------------------------------------- /garbage/error - Copy (5).log: -------------------------------------------------------------------------------- 1 | sdff 2 | sdf 3 | sdf 4 | sdf 5 | sdf 6 | sdf 7 | sd 8 | fsd 9 | f 10 | sdfsd 11 | g 12 | this is changed error.log -------------------------------------------------------------------------------- /garbage/error - Copy (6).log: -------------------------------------------------------------------------------- 1 | sdff 2 | sdf 3 | sdf 4 | sdf 5 | sdf 6 | sdf 7 | sd 8 | fsd 9 | f 10 | sdfsd 11 | g 12 | this is changed error.log -------------------------------------------------------------------------------- /garbage/error - Copy (7).log: -------------------------------------------------------------------------------- 1 | sdff 2 | sdf 3 | sdf 4 | sdf 5 | sdf 6 | sdf 7 | sd 8 | fsd 9 | f 10 | sdfsd 11 | g 12 | this is changed error.log -------------------------------------------------------------------------------- /garbage/error - Copy.log: -------------------------------------------------------------------------------- 1 | sdff 2 | sdf 3 | sdf 4 | sdf 5 | sdf 6 | sdf 7 | sd 8 | fsd 9 | f 10 | sdfsd 11 | g 12 | this is changed error.log -------------------------------------------------------------------------------- /garbage/error.log: -------------------------------------------------------------------------------- 1 | sdff 2 | sdf 3 | sdf 4 | sdf 5 | sdf 6 | sdf 7 | sd 8 | fsd 9 | f 10 | sdfsd 11 | g 12 | this is changed error.log -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | This is my issue1 title 4 - c7 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /static/dir/this is a text doc.txt: -------------------------------------------------------------------------------- 1 | sfsf -------------------------------------------------------------------------------- /static/tex.txt: -------------------------------------------------------------------------------- 1 | harry bhai -------------------------------------------------------------------------------- /this.txt: -------------------------------------------------------------------------------- 1 | sdfsdfsf 2 | this is from master --------------------------------------------------------------------------------