April 2024
M T W T F S S
1234567
891011121314
15161718192021
22232425262728
2930  

Categories

April 2024
M T W T F S S
1234567
891011121314
15161718192021
22232425262728
2930  

git cmd

git pull # will get you repo updates git add . # will add files in your dir git add [dirname]/* # will add files under a new dir git commit -m “your comment“ # will commit your code to your changes git push # will push your code to a reposatory git pull […]

Git Fundamentals

Git Fundamentals

 

Topics To be Covered

Installation

2. Setup

3. Creating a Project

4. Checking the status of the repository

5. Making changes

6. Staging the changes

June 25th, 2018 | Category: GIT | Leave a comment

How Remove Files completely from git repository history

It is straight forward to remove a file from the current commit or HEAD but if you want remove entirely from the repository’s history then you need to run couple of commands.

It took some trial and error for me to find something that worked for me

[…]