This file contains 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
#include <bits/stdc++.h> // precompiled header (may not be supported by execution environment) | |
#include <iostream> | |
#include <sstream> | |
#include <cstdio> | |
#include <cmath> | |
#include <cstring> | |
#include <cctype> | |
#include <string> | |
#include <vector> | |
#include <list> |
This file contains 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
#1 | |
# http://stackoverflow.com/questions/134882/undoing-a-git-rebase | |
-------------------------------------------------------------------------------------------------------------------- | |
#2 | |
# after squashing multiple commits into 1 commit, using interactive rebase tool | |
# have to force push them to override previous commits synced in PR (simple push doesn't work) | |
# don't use command- "git push origin master --force" (it is risky / for advanced user / doesn't work in this context) |