mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-28 06:35:01 +02:00
merge master
This commit is contained in:
commit
f223c95d91
3 changed files with 10 additions and 5 deletions
3
.github/settings.yml
vendored
Normal file
3
.github/settings.yml
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
repository:
|
||||
description: An interactive git visualization and tutorial. Aspiring students of git can use this app to educate and challenge themselves towards mastery of git!
|
||||
homepage: https://pcottle.github.io/learnGitBranching/
|
|
@ -7,13 +7,13 @@ LearnGitBranching is a git repository visualizer, sandbox, and a series of educa
|
|||
|
||||
You can input a variety of commands into LearnGitBranching (LGB) -- as commands are processed, the nearby commit tree will dynamically update to reflect the effects of each command:
|
||||
|
||||

|
||||

|
||||
|
||||
This visualization combined with tutorials and "levels" can help both beginners and intermediate developers polish their version control skills. A quick demo is available here:
|
||||
https://pcottle.github.com/learnGitBranching/?demo
|
||||
https://pcottle.github.io/learnGitBranching/?demo
|
||||
|
||||
Or, you can launch the application normally here:
|
||||
https://pcottle.github.com/learnGitBranching/
|
||||
https://pcottle.github.io/learnGitBranching/
|
||||
|
||||
### Sandbox Mode
|
||||
|
||||
|
@ -133,6 +133,7 @@ Alternatively, you can also build and run the app in a pre-configured online wor
|
|||
<a href="https://github.com/tym-network"><img src="https://avatars1.githubusercontent.com/u/2879545?v=4" title="tym-network" width="80" height="80"></a>
|
||||
<a href="https://github.com/zhyu"><img src="https://avatars1.githubusercontent.com/u/1728523?v=4" title="zhyu" width="80" height="80"></a>
|
||||
<a href="https://github.com/mgarciaisaia"><img src="https://avatars1.githubusercontent.com/u/1190974?v=4" title="mgarciaisaia" width="80" height="80"></a>
|
||||
<a href="https://github.com/YourSenseiCreeper"><img src="https://avatars1.githubusercontent.com/u/6324814?&v=4" title="YourSenseiCreeper" width="80" height="80"></a>
|
||||
<a href="https://github.com/olsza"><img src="https://avatars1.githubusercontent.com/u/12556170?v=4" title="Olsza" width="80" height="80"></a>
|
||||
|
||||
[//]: contributor-faces
|
||||
|
@ -162,6 +163,7 @@ And the following heroes for assisting in translating:
|
|||
* Vasil Kulakov ("coyl") & Lyubov Agadjanyan ("shayenblue")
|
||||
* Aliaksei Berkau ("alexeiberkov")
|
||||
* Mizunashi Mana ("mizunashi-mana")
|
||||
* YourSenseiCreeper
|
||||
* Olsza
|
||||
|
||||
Also huge shoutout for everyone who has put up a pull request that was pulled! Check out the 30+ contributors we have in the [Contributors View](https://github.com/pcottle/learnGitBranching/graphs/contributors)
|
||||
|
|
|
@ -793,8 +793,8 @@ GitEngine.prototype.printBranchesWithout = function(without) {
|
|||
|
||||
GitEngine.prototype.printBranches = function(branches) {
|
||||
var result = '';
|
||||
branches.forEach(function (branch) {
|
||||
result += (branch.selected ? '* ' : '') + branch.id + '\n';
|
||||
branches.forEach(branch => {
|
||||
result += (branch.selected ? '* ' : '') + this.resolveName(branch.id).split('"')[1] + '\n';
|
||||
});
|
||||
throw new CommandResult({
|
||||
msg: result
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue