mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-30 15:44:35 +02:00
Merge pull request #116 from nkouevda/master
Remove case insensitive refs check
This commit is contained in:
commit
a22f033807
1 changed files with 0 additions and 4 deletions
|
@ -1307,10 +1307,6 @@ GitEngine.prototype.resolveStringRef = function(ref) {
|
|||
if (this.refs[ref]) {
|
||||
return this.refs[ref];
|
||||
}
|
||||
// case insensitive also
|
||||
if (this.refs[ref.toUpperCase()]) {
|
||||
return this.refs[ref.toUpperCase()];
|
||||
}
|
||||
|
||||
// Attempt to split ref string into a reference and a string of ~ and ^ modifiers.
|
||||
var startRef = null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue