- Delete remote branch:
git push origin --delete <branch_name>
- Delete local branch :
git branch -d <branch_name>
- Uncommit/Delete local commits:
git reset --soft HEAD^
- Chech/View unpushed commits:
git log --branches --not --remotes
- Diff added and uncomited:
git diff --cached
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package learning_tests; | |
import static org.custommonkey.xmlunit.XMLAssert.*; | |
import org.custommonkey.xmlunit.XMLUnit; | |
import org.junit.Test; | |
public class XmlUnitTest { | |
@Test |