• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

GIT query

 
Ranch Hand
Posts: 145
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello i am using git . I am stuck in following scenario .....


Assume --> My Local Machine STATE = X
GitHub STATE = Y
Initially --> I made a pull , so X == Y

1. I made some changes in my local machine. ( My Local Machine STATE = X' )
2. I made a commit followed by push on GitHub ( Github STATE = X')
3. Now i want to revert to a state where the repository was before i made my last pull from GitHub. ( I mean i want to switch back to state X and want Github state to be Y again )

How to achieve that ??

Essentially i want to remove the following'

1. Effect of my push on github.
2. My local machine state back to the point where i started making last changes.


 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Did you try "git reset"?
http://www.kernel.org/pub/software/scm/git/docs/git-reset.html
 
He's my best friend. Not yours. Mine. You can have this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic