SlideShare une entreprise Scribd logo
1  sur  49
Télécharger pour lire hors ligne
Git aliases of the gods!
TIM PETTERSEN | SENIOR DEVELOPER | ATLASSIAN | @KANNONBOY
ALIASES
$ git config --global alias.ci commit
# equivalent to `git commit`
$ git ci
$ git config --global alias.$name $command
ALIASES
GIT STASH
$ echo “work work work work work work” >> work.txt
$ git stash
$ git status
$ git stash pop
Saved working directory and index state WIP …
nothing to commit, working tree clean
Changes to be committed:
modified: work.txt
GIT STASH
$ echo “new stuff” > new.txt
🤔No local changes to save
$ git stash
$ git status
Untracked files:
new.txt
GIT STASH
unstaged
changes to
tracked files
staged
changes to
tracked files
untracked files ignored files
git stash
GIT STASH
$ echo “new stuff” > new.txt
🤔--include-untracked
No local changes to save
$ git stash
$ git status
Saved working directory and index state WIP …
Untracked files:
new.txt
nothing to commit, working tree clean
GIT STASH
unstaged
changes to
tracked files
staged
changes to
tracked files
untracked files ignored files
--keep-index
git stash
--include-untracked
--all
GIT STA{0,3}SH
$ git config --global alias.stsh ‘stash --keep-index’
$ git config --global alias.staash ‘stash --include-untracked’
$ git config --global alias.staaash ‘stash --all’
$ git stsh # unstaged
$ git stash # unstaged + staged
$ git staash # unstaged + staged + untracked
$ git staaash # unstaged + staged + untracked + ignored
Why alias?
Save time
Encapsulate
options
Chain
commands
Share your
wizardry
WHICH BRANCH?
[alias]
staaash = stash --all
which = !git branch | grep -i
$ git which JIRA-7
feature/JIRA-7-reactor-refactor
release/JIRA-7.0
$ cat ~/.gitconfig
JIRA-7
GIT LUCKY
sh -c ‘ ’
which = !git branch | grep -i
git checkout $(git which $1 -m1)lucky =
[alias]
!
$ git lucky JIRA-7
Switched to branch ‘feature/JIRA-7-reactor-refactor’
-
GIT STANDUP
[alias]
standup = !git log --all 
--author=$USER 
--since=‘9am yesterday’ 
--format=%s
GIT STANDUP
$ git standup
Fix format of `git standup` command
Document which and lucky
Document the pipelines alias
wrap at 80 chars
Add git serve alias
Use vanilla ! format for standup alias
GIT LAZY-STANDUP
[alias]
standup = !git log --all 
--author=$USER 
--since=‘9am yesterday’ 
--format=%s
lazy-standup = !git standup | say
D V C S
GIT DAEMON
[alias]
serve = daemon 
--reuseaddr 
--verbose 
--base-path=. 
--export-all ./.git
👹
$ git serve
Alias source: https://git.wiki.kernel.org/index.php/Aliases
[39113] Ready to rumble
Image credit: ngrok.com
ngrok
GIT NGROK
$ git ngrok
[31074] Ready to rumble
Serving your repo at: git://0.tcp.ngrok.io:17720/
Press any key to tear down...
$ git clone git://0.tcp.ngrok.io:17720/ my-repo
Cloning into ‘my-repo'...
Waiting for git daemon and ngrok to start...
GIT NGROK
[alias]
ngrok = “!f() { 
git serve & 
ngrok tcp 9418 & 
}; f“
GIT NGROK
[alias]
ngrok = “!f() { 
git serve & 
ngrok tcp 9418 & 
curl -s …/api/tunnels/command_line | 
jq -r ‘.public_url’;
read -rsp ‘Press key to tear down’ k; 
pkill -P $$; 
}; f“ Awesome for parsing JSON in scripts
Wait a second…
THAT’STHAT’S BASH!BASH!
Context and namespacing
WHEN SHOULD I ALIAS?
Git aliases are for Git operations.
Bash aliases run anywhere.
If it doesn’t use a Git command (or touch .git/)
it probably shouldn’t be a Git alias.
BITBUCKET PIPELINES
$ cat bitbucket-pipelines.yml
pipelines:
image: node:4.6.0
default:
- step:
script:
- npm test
BITBUCKET PIPELINES
$ cat bitbucket-pipelines.yml
pipelines:
image: node:4.6.0
custom:
deploy:
- step:
script:
- ./deploy-to-prod.sh
GIT PIPELINE
$ git pipeline deploy 7e2aef8
$ git pipeline docs v3.1.0
$ git pipeline sonar feature/JIRA-123
GIT REV-PARSE
$ git rev-parse 7e2aef8
7e2aef80c173efa8bebfd19b10b93f40f2da03b9
PARSING “COMMIT-ISH”
rev-parse
7e2aef80c173efa8bebfd19b10b93f40f2da03b9
7e2aef8
feature/JIRA-123 master@{yesterday}
bd4a417~2
v3.1.0
GIT REV-LIST
$ git rev-list 7e2aef8~3..7e2aef8
7e2aef80c173efa8bebfd19b10b93f40f2da03b9
d3c70a8678ac7ef1a82caeedc23d51fb4714a70c
443ec224b5a8c64abe20f376070d3b1196865f30
GIT PIPELINES
$ git pipelines test 7e2aef8~3..7e2aef8
master
origin/master
FIND A REGRESSION
$ git bisect $broken_commit $green_build
O(log n)
t * log n
FIND A REGRESSION
$ pipelines test $green_build..$broken_commitgit
t$ git pipelines test origin/master{1}..origin/master{0}
Env
validation
Dependency
checks
Embedded JSON
GIT SCRIPTS
$ PATH=$PATH:~/git-scripts
$ cat ~/git-scripts/git-my-cool-script
$ git my-cool-script
#!/usr/bin/env
…
nodepythonruby
GIT SHAM
$ git sham <regex>
$ git sham ^414
$ git commit -m “Bitbucket Server v4.14”
f4fc63521f56 Bitbucket Server 4.14
414ab621c557 Bitbucket Server 4.14 🗽🎖🌦
JIRA-GIT
$ npm install -g jira-git
$ git jira --configure
# to configure
$ git jira -h
# help!
# to install
SHARING ALIASES
$ cat ~/.gitconfig
[include]
path = ~/git-aliases/.gitaliases
$ git clone https://bitbucket.org/tpettersen/git-aliases
Custom actions in SourceTree
Git aliases of the gods!
Save time
Encapsulate
options
Chain
commands
Share your
wizardry
GIT ALIASES OF THE GODS!
bit.ly/git-aliasthe aliases:
ngrok: ngrok.com
jq: jqplay.org
git sham:
jira git: bit.ly/jira-git
bit.ly/git-sham
me: @kannonboy
(Don’t do it!)
Thanks!
TIM PETTERSEN | SENIOR DEVELOPER | ATLASSIAN | @KANNONBOY
Questions?

Contenu connexe

Tendances

版本控制 使用Git & git hub
版本控制   使用Git & git hub版本控制   使用Git & git hub
版本控制 使用Git & git hub
維佋 唐
 

Tendances (20)

Intro to git and git hub
Intro to git and git hubIntro to git and git hub
Intro to git and git hub
 
Gitを使ってみよう
Gitを使ってみようGitを使ってみよう
Gitを使ってみよう
 
デザイナのためのGit入門
デザイナのためのGit入門デザイナのためのGit入門
デザイナのためのGit入門
 
プログラミング勉強会「オトナのGit入門」
プログラミング勉強会「オトナのGit入門」プログラミング勉強会「オトナのGit入門」
プログラミング勉強会「オトナのGit入門」
 
Basic Git Intro
Basic Git IntroBasic Git Intro
Basic Git Intro
 
Git基礎介紹
Git基礎介紹Git基礎介紹
Git基礎介紹
 
版本控制 使用Git & git hub
版本控制   使用Git & git hub版本控制   使用Git & git hub
版本控制 使用Git & git hub
 
Getting Git Right
Getting Git RightGetting Git Right
Getting Git Right
 
Git - Basic Crash Course
Git - Basic Crash CourseGit - Basic Crash Course
Git - Basic Crash Course
 
Learning git
Learning gitLearning git
Learning git
 
はじめてのGit forデザイナー&コーダー
はじめてのGit forデザイナー&コーダーはじめてのGit forデザイナー&コーダー
はじめてのGit forデザイナー&コーダー
 
Git Tutorial I
Git Tutorial IGit Tutorial I
Git Tutorial I
 
Git training v10
Git training v10Git training v10
Git training v10
 
Git best practices workshop
Git best practices workshopGit best practices workshop
Git best practices workshop
 
こんなに使える!今どきのAPIドキュメンテーションツール
こんなに使える!今どきのAPIドキュメンテーションツールこんなに使える!今どきのAPIドキュメンテーションツール
こんなに使える!今どきのAPIドキュメンテーションツール
 
Photon Technical Deep Dive: How to Think Vectorized
Photon Technical Deep Dive: How to Think VectorizedPhoton Technical Deep Dive: How to Think Vectorized
Photon Technical Deep Dive: How to Think Vectorized
 
Git basic
Git basicGit basic
Git basic
 
Git advanced
Git advancedGit advanced
Git advanced
 
Git and github 101
Git and github 101Git and github 101
Git and github 101
 
いつやるの?Git入門
いつやるの?Git入門いつやるの?Git入門
いつやるの?Git入門
 

En vedette

En vedette (20)

Building a Successful Service Culture: How Airbnb Elevates with JIRA Service ...
Building a Successful Service Culture: How Airbnb Elevates with JIRA Service ...Building a Successful Service Culture: How Airbnb Elevates with JIRA Service ...
Building a Successful Service Culture: How Airbnb Elevates with JIRA Service ...
 
Hello, Trello! An insider's guide
Hello, Trello! An insider's guideHello, Trello! An insider's guide
Hello, Trello! An insider's guide
 
The Team Playbook: A Recipe for Healthy Teams
The Team Playbook: A Recipe for Healthy TeamsThe Team Playbook: A Recipe for Healthy Teams
The Team Playbook: A Recipe for Healthy Teams
 
Bundeswehr Blueprint: A Collaboration Platform for the German Military
Bundeswehr Blueprint: A Collaboration Platform for the German MilitaryBundeswehr Blueprint: A Collaboration Platform for the German Military
Bundeswehr Blueprint: A Collaboration Platform for the German Military
 
Enterprise Ready - What's New in Data Center
Enterprise Ready - What's New in Data CenterEnterprise Ready - What's New in Data Center
Enterprise Ready - What's New in Data Center
 
Scaling Agile with JIRA Software and Portfolio for JIRA
Scaling Agile with JIRA Software and Portfolio for JIRAScaling Agile with JIRA Software and Portfolio for JIRA
Scaling Agile with JIRA Software and Portfolio for JIRA
 
A Day in the Life of a HipChat Developer
A Day in the Life of a HipChat DeveloperA Day in the Life of a HipChat Developer
A Day in the Life of a HipChat Developer
 
Developers Use Bitbucket and So Can You
Developers Use Bitbucket and So Can YouDevelopers Use Bitbucket and So Can You
Developers Use Bitbucket and So Can You
 
Configuration as Code in Bamboo
Configuration as Code in BambooConfiguration as Code in Bamboo
Configuration as Code in Bamboo
 
Code Reviews vs. Pull Requests
Code Reviews vs. Pull RequestsCode Reviews vs. Pull Requests
Code Reviews vs. Pull Requests
 
Software Delivery at Warp Speed: Five Essential Techniques
Software Delivery at Warp Speed: Five Essential TechniquesSoftware Delivery at Warp Speed: Five Essential Techniques
Software Delivery at Warp Speed: Five Essential Techniques
 
Unleashing Docker with Pipelines in Bitbucket Cloud
Unleashing Docker with Pipelines in Bitbucket CloudUnleashing Docker with Pipelines in Bitbucket Cloud
Unleashing Docker with Pipelines in Bitbucket Cloud
 
Beyond Agile and DevOps: From Concepts to Products in Weeks, Not Months
Beyond Agile and DevOps: From Concepts to Products in Weeks, Not MonthsBeyond Agile and DevOps: From Concepts to Products in Weeks, Not Months
Beyond Agile and DevOps: From Concepts to Products in Weeks, Not Months
 
How to Plan and Execute a Go-to-market Campaign for an Atlassian Add-on
How to Plan and Execute a Go-to-market Campaign for an Atlassian Add-onHow to Plan and Execute a Go-to-market Campaign for an Atlassian Add-on
How to Plan and Execute a Go-to-market Campaign for an Atlassian Add-on
 
How to Write a Chatbot that Gets Smarter
How to Write a Chatbot that Gets SmarterHow to Write a Chatbot that Gets Smarter
How to Write a Chatbot that Gets Smarter
 
How to Make Customer Support Your Product's Greatest Feature
How to Make Customer Support Your Product's Greatest FeatureHow to Make Customer Support Your Product's Greatest Feature
How to Make Customer Support Your Product's Greatest Feature
 
What's New with Confluence Connect
What's New with Confluence ConnectWhat's New with Confluence Connect
What's New with Confluence Connect
 
Bringing Server Add-ons to the Cloud and Back Again
Bringing Server Add-ons to the Cloud and Back AgainBringing Server Add-ons to the Cloud and Back Again
Bringing Server Add-ons to the Cloud and Back Again
 
Closing the Deal: How Atlassian Partners Help Grow Your User Base
Closing the Deal: How Atlassian Partners Help Grow Your User BaseClosing the Deal: How Atlassian Partners Help Grow Your User Base
Closing the Deal: How Atlassian Partners Help Grow Your User Base
 
Shipping to Server and Cloud with Docker
Shipping to Server and Cloud with DockerShipping to Server and Cloud with Docker
Shipping to Server and Cloud with Docker
 

Similaire à Git Aliases of the Gods!

Git Distributed Version Control System
Git   Distributed Version Control SystemGit   Distributed Version Control System
Git Distributed Version Control System
Victor Wong
 

Similaire à Git Aliases of the Gods! (20)

Loading...git
Loading...gitLoading...git
Loading...git
 
Git - Get Ready To Use It
Git - Get Ready To Use ItGit - Get Ready To Use It
Git - Get Ready To Use It
 
Git walkthrough
Git walkthroughGit walkthrough
Git walkthrough
 
Becoming a Git Master
Becoming a Git MasterBecoming a Git Master
Becoming a Git Master
 
GTFO: Git Theory For OpenSource
GTFO: Git Theory For OpenSourceGTFO: Git Theory For OpenSource
GTFO: Git Theory For OpenSource
 
Gittalk
GittalkGittalk
Gittalk
 
Working with Git
Working with GitWorking with Git
Working with Git
 
Git
GitGit
Git
 
Git Magic: Versioning Files like a Boss
Git Magic: Versioning Files like a BossGit Magic: Versioning Files like a Boss
Git Magic: Versioning Files like a Boss
 
Get Good With Git
Get Good With GitGet Good With Git
Get Good With Git
 
Git a stupid change tracker and persistent map.
Git a stupid change tracker and persistent map.Git a stupid change tracker and persistent map.
Git a stupid change tracker and persistent map.
 
git internals
git internalsgit internals
git internals
 
Git Started With Git
Git Started With GitGit Started With Git
Git Started With Git
 
Essential git fu for tech writers
Essential git fu for tech writersEssential git fu for tech writers
Essential git fu for tech writers
 
Git - a powerful version control tool
Git - a powerful version control toolGit - a powerful version control tool
Git - a powerful version control tool
 
Git Distributed Version Control System
Git   Distributed Version Control SystemGit   Distributed Version Control System
Git Distributed Version Control System
 
T3dd10 git
T3dd10 gitT3dd10 git
T3dd10 git
 
Git
GitGit
Git
 
Git Basics (Professionals)
 Git Basics (Professionals) Git Basics (Professionals)
Git Basics (Professionals)
 
Wokshop de Git
Wokshop de Git Wokshop de Git
Wokshop de Git
 

Plus de Atlassian

Design Your Next App with the Atlassian Vendor Sketch Plugin
Design Your Next App with the Atlassian Vendor Sketch PluginDesign Your Next App with the Atlassian Vendor Sketch Plugin
Design Your Next App with the Atlassian Vendor Sketch Plugin
Atlassian
 

Plus de Atlassian (20)

International Women's Day 2020
International Women's Day 2020International Women's Day 2020
International Women's Day 2020
 
10 emerging trends that will unbreak your workplace in 2020
10 emerging trends that will unbreak your workplace in 202010 emerging trends that will unbreak your workplace in 2020
10 emerging trends that will unbreak your workplace in 2020
 
Forge App Showcase
Forge App ShowcaseForge App Showcase
Forge App Showcase
 
Let's Build an Editor Macro with Forge UI
Let's Build an Editor Macro with Forge UILet's Build an Editor Macro with Forge UI
Let's Build an Editor Macro with Forge UI
 
Meet the Forge Runtime
Meet the Forge RuntimeMeet the Forge Runtime
Meet the Forge Runtime
 
Forge UI: A New Way to Customize the Atlassian User Experience
Forge UI: A New Way to Customize the Atlassian User ExperienceForge UI: A New Way to Customize the Atlassian User Experience
Forge UI: A New Way to Customize the Atlassian User Experience
 
Take Action with Forge Triggers
Take Action with Forge TriggersTake Action with Forge Triggers
Take Action with Forge Triggers
 
Observability and Troubleshooting in Forge
Observability and Troubleshooting in ForgeObservability and Troubleshooting in Forge
Observability and Troubleshooting in Forge
 
Trusted by Default: The Forge Security & Privacy Model
Trusted by Default: The Forge Security & Privacy ModelTrusted by Default: The Forge Security & Privacy Model
Trusted by Default: The Forge Security & Privacy Model
 
Designing Forge UI: A Story of Designing an App UI System
Designing Forge UI: A Story of Designing an App UI SystemDesigning Forge UI: A Story of Designing an App UI System
Designing Forge UI: A Story of Designing an App UI System
 
Forge: Under the Hood
Forge: Under the HoodForge: Under the Hood
Forge: Under the Hood
 
Access to User Activities - Activity Platform APIs
Access to User Activities - Activity Platform APIsAccess to User Activities - Activity Platform APIs
Access to User Activities - Activity Platform APIs
 
Design Your Next App with the Atlassian Vendor Sketch Plugin
Design Your Next App with the Atlassian Vendor Sketch PluginDesign Your Next App with the Atlassian Vendor Sketch Plugin
Design Your Next App with the Atlassian Vendor Sketch Plugin
 
Tear Up Your Roadmap and Get Out of the Building
Tear Up Your Roadmap and Get Out of the BuildingTear Up Your Roadmap and Get Out of the Building
Tear Up Your Roadmap and Get Out of the Building
 
Nailing Measurement: a Framework for Measuring Metrics that Matter
Nailing Measurement: a Framework for Measuring Metrics that MatterNailing Measurement: a Framework for Measuring Metrics that Matter
Nailing Measurement: a Framework for Measuring Metrics that Matter
 
Building Apps With Color Blind Users in Mind
Building Apps With Color Blind Users in MindBuilding Apps With Color Blind Users in Mind
Building Apps With Color Blind Users in Mind
 
Creating Inclusive Experiences: Balancing Personality and Accessibility in UX...
Creating Inclusive Experiences: Balancing Personality and Accessibility in UX...Creating Inclusive Experiences: Balancing Personality and Accessibility in UX...
Creating Inclusive Experiences: Balancing Personality and Accessibility in UX...
 
Beyond Diversity: A Guide to Building Balanced Teams
Beyond Diversity: A Guide to Building Balanced TeamsBeyond Diversity: A Guide to Building Balanced Teams
Beyond Diversity: A Guide to Building Balanced Teams
 
The Road(map) to Las Vegas - The Story of an Emerging Self-Managed Team
The Road(map) to Las Vegas - The Story of an Emerging Self-Managed TeamThe Road(map) to Las Vegas - The Story of an Emerging Self-Managed Team
The Road(map) to Las Vegas - The Story of an Emerging Self-Managed Team
 
Building Apps With Enterprise in Mind
Building Apps With Enterprise in MindBuilding Apps With Enterprise in Mind
Building Apps With Enterprise in Mind
 

Dernier

introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
VishalKumarJha10
 

Dernier (20)

LEVEL 5 - SESSION 1 2023 (1).pptx - PDF 123456
LEVEL 5   - SESSION 1 2023 (1).pptx - PDF 123456LEVEL 5   - SESSION 1 2023 (1).pptx - PDF 123456
LEVEL 5 - SESSION 1 2023 (1).pptx - PDF 123456
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
BUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptxBUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptx
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 

Git Aliases of the Gods!