15 lines
457 B
Bash
15 lines
457 B
Bash
#!/bin/bash
|
|
# The Saver — make three commits.
|
|
#
|
|
# When this script runs, a fresh Git repo with identity already set
|
|
# is in your working directory. Make three commits, in this exact
|
|
# order:
|
|
#
|
|
# 1. Create a.txt containing "alpha". Commit message: "add alpha"
|
|
# 2. Create b.txt containing "beta". Commit message: "add beta"
|
|
# 3. Create c.txt containing "gamma". Commit message: "add gamma"
|
|
#
|
|
# Tools: echo, git add, git commit -m
|
|
|
|
# Your code here.
|