Skip to content

Commit 3d373b3

Browse files
authored
Merge pull request #15 from diffplug/fix/404s
Fix a few bad links
2 parents 60db85a + 2129245 commit 3d373b3

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

next/src/pages/branches/save-for-later.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It's common to make some changes in your working copy that end up looking like a
1010
source="/branches/save-for-later/save-for-later.mp4"
1111
/>
1212

13-
*Images by Mr. Gray, Morio, Terri Monahan, Rama, and Gmhofmann under various CCSA licenses, see [here for full credits](https://github.com/diffplug/gitfromscratch/blob/master/manuscript/branches/save-for-later/licenses.md).*
13+
*Images by Mr. Gray, Morio, Terri Monahan, Rama, and Gmhofmann under various CCSA licenses, see [here for full credits](https://github.com/diffplug/gitfromscratch/blob/main/next/src/pages/branches/licenses.md).*
1414

1515
{/*
1616
Set git user to "Eastman Kodak".
@@ -82,4 +82,4 @@ This gives you a fresh start, but you still have easy access to your work-in-pro
8282

8383
*Hint 2: If you're an experienced git user who already uses the "git stash" command, see the [departures from vanilla git](/epilogue/departures) section for more info.*
8484

85-
There *is* a chance that `Apply delta` will fail. That's okay, you'll still have both versions available, and you can manually copy-paste the work back over. We'll go into the details of when and how this fails in the [time-travel section](/time-travel/time-travel). But first, let's talk about [sharing your work with others](/share/share).
85+
There *is* a chance that `Apply delta` will fail. That's okay, you'll still have both versions available, and you can manually copy-paste the work back over. We'll go into the details of when and how this fails in the [time-travel section](/time-travel). But first, let's talk about [sharing your work with others](/share).

next/src/pages/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ There are lots of tutorials on how to get started with git. There are two thing
1818

1919
So, once you have [downloaded DiffPlug](http://www.diffplug.com/versions/latest), let's begin. If you get stuck, you can ask for help in our [live chatroom](https://gitter.im/diffplug/gitfromscratch). The source which generates this book is [available on GitHub](https://github.com/diffplug/gitfromscratch), so you can subcribe to updates or branch and modify it.
2020

21-
With all that out of the way, let's [get started](intro/how-to-use-git)!
21+
With all that out of the way, let's [get started](intro)!

next/src/pages/share.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
Git is a powerful way to track the history of your files, but it's an even more powerful way to share and collaborate on files.
44

5-
In this section, we'll show you how to share commits with other repositories. First, we'll show you how to [establish a connection](remotes/remotes.md) with a remote repository, and download everything it has to offer. Next we'll show you how to [collaborate on a fixed target (tags)](tags/tags.md) and then on a [moving target (branches)](branches/branches.md).
5+
In this section, we'll show you how to share commits with other repositories. First, we'll show you how to [establish a connection](/share/remotes) with a remote repository, and download everything it has to offer. Next we'll show you how to [collaborate on a fixed target (tags)](/share/tags) and then on a [moving target (branches)](/share/branches).
66

7-
After playing around with sharing, you're going to quickly encounter the situation where you've done some work, but someone else has published a new version in the meantime. This sets you up perfectly for the next section, where we'll show you how you can [move your work](../time-travel/time-travel.md) onto the latest version.
7+
After playing around with sharing, you're going to quickly encounter the situation where you've done some work, but someone else has published a new version in the meantime. This sets you up perfectly for the next section, where we'll show you how you can [move your work](/time-travel) onto the latest version.
88

9-
So, without further ado, let's [establish a connection](remotes/remotes.md).
9+
So, without further ado, let's [establish a connection](/share/remotes).

next/src/pages/share/branches.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Video } from '@/components/Video/Video'
44

55
# Collaborate on a moving target
66

7-
In [an earlier section](/branches) we discussed what a branch actually was - a name that points to a commit. When synchronizing with teammates, it is important to also remember the intent behind publishing a branch. **The purpose of publishing a branch is to synchronize and integrate work around a specific objective**. You can use your own convention, but the following are common:
7+
In [an earlier section](/branches/sticky-notes-and-paintbrushes) we discussed what a branch actually was - a name that points to a commit. When synchronizing with teammates, it is important to also remember the intent behind publishing a branch. **The purpose of publishing a branch is to synchronize and integrate work around a specific objective**. You can use your own convention, but the following are common:
88

99
- **master** holds the latest working version of the integrated project
1010
- **feature/<feature name>** holds the work-in-progress towards a specific feature

next/src/pages/share/tags.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ The only way to move a tag is to delete it and create a new tag with the same na
2323

2424
Tags are intended to mark a permanent spot in time, so there isn't a good mechanism for moving them. If you upload a tag, then delete it and upload the same tag in a different spot, it's very likely that some people in your team will have the tag in the first place, while others will have it in the second place.
2525

26-
Now that we can share a fixed snapshot, we'll look at [collaborating on a moving target](/branches).
26+
Now that we can share a fixed snapshot, we'll look at [collaborating on a moving target](/share/branches).

next/src/pages/time-travel/patch.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,4 +204,4 @@ Great! In fact, this is exactly how conventional "diff/patch" works, although c
204204

205205
We've already outlined how zip files could be patched, but what about other kinds of file? Stay tuned to DiffPlug for upcoming announcements!
206206

207-
So far, we've used patches to solve a problem we encountered while merging. Unsurprisingly, the ability to automatically redo work is useful [for a lot more than just merging](../cherry-pick-and-rebase/cherry-pick-and-rebase.md).
207+
So far, we've used patches to solve a problem we encountered while merging. Unsurprisingly, the ability to automatically redo work is useful [for a lot more than just merging](/time-travel/cherry-pick-and-rebase).

0 commit comments

Comments
 (0)