Auto-update: Tue Jul 30 21:23:31 PDT 2024
This commit is contained in:
parent
d63c471317
commit
d0d8181f30
1 changed files with 16 additions and 33 deletions
49
pull
49
pull
|
@ -1,42 +1,25 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
repos_file=~/workshop/repos.txt
|
output_file=~/workshop/repos.txt
|
||||||
|
|
||||||
# Check if the repos file exists
|
# Ensure the output directory exists
|
||||||
if [ ! -f "$repos_file" ]; then
|
mkdir -p "$(dirname "$output_file")"
|
||||||
echo "Error: $repos_file does not exist."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Read the repos file and process each directory
|
# Clear the existing file
|
||||||
while IFS= read -r repo_path || [[ -n "$repo_path" ]]; do
|
> "$output_file"
|
||||||
# Trim whitespace
|
|
||||||
repo_path=$(echo "$repo_path" | xargs)
|
|
||||||
|
|
||||||
# Skip empty lines
|
# Find all .git directories, excluding hidden directories and suppressing permission denied errors
|
||||||
[ -z "$repo_path" ] && continue
|
find ~/ -type d -name ".git" -not -path "*/.*/*" 2>/dev/null | while read -r gitdir; do
|
||||||
|
# Get the parent directory of the .git folder
|
||||||
|
repo_path=$(dirname "$gitdir")
|
||||||
|
echo "$repo_path" >> "$output_file"
|
||||||
|
done
|
||||||
|
|
||||||
echo "Processing repository: $repo_path"
|
echo "Git repositories have been written to $output_file"
|
||||||
|
|
||||||
# Navigate to the project directory
|
# Remove duplicate entries
|
||||||
if ! cd "$repo_path"; then
|
sort -u "$output_file" -o "$output_file"
|
||||||
echo "Error: Unable to change to directory $repo_path. Skipping."
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check if it's a git repository
|
echo "Duplicate entries removed. Final list:"
|
||||||
if [ ! -d .git ]; then
|
cat "$output_file"
|
||||||
echo "Warning: $repo_path is not a git repository. Skipping."
|
|
||||||
continue
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Force pull the latest changes from the repository
|
|
||||||
echo "Force pulling latest changes..."
|
|
||||||
git pull --force
|
|
||||||
|
|
||||||
echo "Update complete for $repo_path"
|
|
||||||
echo "----------------------------------------"
|
|
||||||
done < "$repos_file"
|
|
||||||
|
|
||||||
echo "All repositories processed."
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue