├── .idea └── .gitignore ├── hello.js ├── readme.md └── test.js /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /hello.js: -------------------------------------------------------------------------------- 1 | console.log('Hello, Git!'); -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | ## Welcome to Git! 2 | 3 | - Yo, Johnny here! 4 | - This is coming from `dev-adrian` 5 | - I'm adding this from `feature-branch` -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | console.log('test'); --------------------------------------------------------------------------------